home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / intrvews / xgrab.lha / xgrab / grabst / Makefile < prev    next >
Makefile  |  1990-04-25  |  2KB  |  91 lines

  1. # GRAB Graph Layout and Browser System
  2. #
  3. # Copyright (c) 1986, 1988 Regents of the University of California
  4. # Copyright (c) 1989, Tera Computer Company
  5.  
  6. # makefile for grab
  7.  
  8. GRDIR = ../include
  9. GRABFILES = io.o\
  10.     proper.o\
  11.     copy.o\
  12.     mincross.o\
  13.     layout.o\
  14.     set.o\
  15.     delete.o\
  16.     create.o\
  17.     util.o\
  18.     levels.o\
  19.     relay.o\
  20.     token.o\
  21.     attribute.o
  22.  
  23. GRABSRC = io.c\
  24.     proper.c\
  25.     copy.c\
  26.     mincross.c\
  27.     layout.c\
  28.     set.c\
  29.     delete.c\
  30.     create.c\
  31.     util.c\
  32.     levels.c\
  33.     relay.c\
  34.     token.c\
  35.     attribute.c
  36.  
  37. ALL = $(GRABHDRS) $(GRABSRC)
  38.  
  39. LIBS = -lsuntool -lsunwindow -lpixrect -lm
  40.  
  41. GRIND = qgrind
  42.  
  43. OFLAGS = 
  44. CFLAGS = -I$(GRDIR) $(OFLAGS) -DGarbageCollect
  45.  
  46. grablib.a : $(GRABFILES)
  47.     ar vru grablib.a $(GRABFILES)
  48.     ranlib grablib.a
  49.  
  50. clean :
  51.     -rm $(GRABFILES) grablib.a
  52.  
  53. layout.o:     $(GRDIR)/digraph.h $(GRDIR)/set.h\
  54.         $(GRDIR)/attribute.h $(GRDIR)/debug.h
  55.  
  56. copy.o:     $(GRDIR)/digraph.h $(GRDIR)/set.h\
  57.         $(GRDIR)/attribute.h
  58.  
  59. mincross.o:     $(GRDIR)/digraph.h $(GRDIR)/set.h\
  60.         $(GRDIR)/attribute.h $(GRDIR)/debug.h
  61.  
  62. proper.o:     $(GRDIR)/digraph.h $(GRDIR)/set.h\
  63.         $(GRDIR)/attribute.h $(GRDIR)/list.h\
  64.         $(GRDIR)/debug.h
  65.  
  66. io.o:         $(GRDIR)/digraph.h $(GRDIR)/set.h\
  67.         $(GRDIR)/attribute.h $(GRDIR)/token.h
  68.  
  69. set.o:         $(GRDIR)/digraph.h $(GRDIR)/set.h\
  70.         $(GRDIR)/attribute.h 
  71.  
  72. delete.o:     $(GRDIR)/digraph.h $(GRDIR)/set.h\
  73.         $(GRDIR)/attribute.h $(GRDIR)/debug.h
  74.  
  75. create.o:     $(GRDIR)/digraph.h $(GRDIR)/set.h\
  76.         $(GRDIR)/attribute.h $(GRDIR)/debug.h
  77.  
  78. util.o:     $(GRDIR)/digraph.h $(GRDIR)/set.h\
  79.         $(GRDIR)/attribute.h $(GRDIR)/debug.h
  80.  
  81. levels.o:     $(GRDIR)/digraph.h $(GRDIR)/set.h\
  82.         $(GRDIR)/attribute.h $(GRDIR)/debug.h
  83.  
  84. relay.o:     $(GRDIR)/digraph.h $(GRDIR)/set.h\
  85.         $(GRDIR)/attribute.h $(GRDIR)/debug.h
  86.  
  87. attribute.o:     $(GRDIR)/attribute.h
  88.  
  89. token.o:    $(GRDIR)/digraph.h $(GRDIR)/attribute.h\
  90.         $(GRDIR)/token.h
  91.